func internal/runtime/maps.newTable

6 uses

	internal/runtime/maps (current package)
		map.go#L318: 		directory[i] = newTable(mt, uint64(targetCapacity)/dirSize, i, m.globalDepth)
		map.go#L605: 	tab := newTable(typ, 2*abi.SwissMapGroupSlots, 0, 0)
		table.go#L74: func newTable(typ *abi.SwissMapType, capacity uint64, index int, localDepth uint8) *table {
		table.go#L1157: 	left := newTable(typ, maxTableCapacity, -1, localDepth)
		table.go#L1158: 	right := newTable(typ, maxTableCapacity, -1, localDepth)
		table.go#L1201: 	newTable := newTable(typ, uint64(newCapacity), t.index, t.localDepth)